refactor(cli): depend on standalone capglyph-core via ../capglyph-core (CTX-0040) - #30
Merged
Merged
Conversation
…e (CTX-0040) Extract embedded crates/capglyph-core (v0.1.0) to standalone repo CapGlyph/capglyph-core (canonical Rust Core). Update Cargo.toml: remove [workspace] members, change capglyph-core dep from path = "crates/capglyph-core" to path = "../capglyph-core" (isolated monorepo sibling, same as ../vectomancy). Delete crates/capglyph-core directory (mechanical extraction, no duplicate). Update CI/release workflows to checkout CapGlyph/capglyph-core sibling alongside vectomancy so path resolves, include its Cargo.lock in cache keys, and fix AUR PKGBUILD prepare() to symlink capglyph-core sibling + add capglyph-core source. Update docs/capglyph-core-api.md with CTX-0040 workspace layout and extraction checklist + dependency decision (path dep until crates.io publish). Verified: cargo fmt --check, cargo clippy --all-targets -- -D warnings, cargo test, cargo check --lib --target wasm32-unknown-unknown clean (no clap/glob/trustmark/c2pa) in both repos; wasm tree clean. Part of CTX-0040.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Companion to CapGlyph/capglyph-core#1 (CTX-0040 extraction).
Cargo.toml: remove[workspace] members = ["crates/capglyph-core"], changecapglyph-coredep frompath = "crates/capglyph-core"topath = "../capglyph-core"(isolated monorepo sibling, same as../vectomancy)crates/capglyph-coredirectory (git rm -r).github/workflows/ci.yml+release.yml: addCapGlyph/capglyph-corecheckout atcapglyph-coresibling, include its Cargo.lock in cache keys, fix AUR PKGBUILD prepare() to symlink capglyph-coredocs/capglyph-core-api.mdwith CTX-0040 workspace layout and extraction checklist + dependency decision (path dep until crates.io publish)Verification:
All pass in both repos. Uses standalone
CapGlyph/capglyph-core v0.1.0via sibling path.Part of CTX-0040. Closes CTX-0040.